CDN加速镜像 | 设为首页 | 加入收藏夹
当前位置: 首页 资源下载 搜索资源 - pipeline A

搜索资源列表

  1. pipe

    0下载:
  2. 自己实现的一个管道客户端,用于向管道服务器发送数据,支持大文件传输,支持buffer-Their client to achieve a pipeline for sending data to the pipe server to support large file transfers, support for buffer
  3. 所属分类:Linux Network

    • 发布日期:2017-05-12
    • 文件大小:3012642
    • 提供者:wallacexiang
  1. cfz

    0下载:
  2. 【设计题目】Linux二级文件系统设计【开发语言及实现平台或实验环境】C++/VC++【设计要求】理解Linux的文件系统的组织;掌握常用的数据结构;系统采用两级目录,其中第一级对应于用户账号,第二级对应于用户帐号下的文件 使用文件来模拟外存,进行数据结构设计和操作算法的设计,实现一个文件系统并实现基本的文件操作(为了简便文件系统,不考虑文件共享,文件系统安全以及管道文件与设备文件等特殊内容)。要求:1、对程序的每一部分要有详细的设计分析说明 2、程序执行的每个步骤要有具体的提示内容或输出3、源
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-04-01
    • 文件大小:5305
    • 提供者:王跃
  1. CPU

    0下载:
  2. 实现了简单的CPU功能 采用三级流水线和超标量-CPU functions to achieve a simple three-stage pipeline and superscalar
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-05-08
    • 文件大小:1735782
    • 提供者:era
  1. rd1020

    0下载:
  2. Synchronous DRAM (SDRAM) has become a mainstream memory of choice in embedded system memory design due to its speed, burst access and pipeline features. For high-end applications using processors such as Motorola MPC 8260 or Intel StrongArm, the
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-01
    • 文件大小:19154
    • 提供者:phwer01
  1. source

    0下载:
  2. 自己编写的atoi函数,字符串倒序,线程创建和管道创建,已经测试过了,没什么问题,希望对大家有点帮助!-I have written atoi function, string reverse, thread creation and pipeline creation, has been tested, no problem, we want a little help!
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-28
    • 文件大小:1830
    • 提供者:谢元虎
  1. pipe

    0下载:
  2. 一个非常简单的管道实现函数,直接编译就可运行-Pipeline to achieve a very simple function
  3. 所属分类:Embeded Linux

    • 发布日期:2017-04-03
    • 文件大小:1038
    • 提供者:zhaohone
  1. Apache_Mina_Server_2[1].0

    0下载:
  2. Apache Mina Server 是一个网络通信应用框架,也就是说,它主要是对基于TCP/IP、UDP/IP 协议栈的通信框架(当然,也可以提供JAVA 对象的序列化服务、虚拟机管道通信服务等), Mina 可以帮助我们快速开发高性能、高扩展性的网络通信应用,Mina 提供了事件驱动、异 步(Mina 的异步IO 默认使用的是JAVA NIO 作为底层支持)操作的编程模型。-Apache Mina Server is a network communication applica
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-03-29
    • 文件大小:394636
    • 提供者:Joe
  1. ARM_Core

    0下载:
  2. ARM 7,有三级流水线,对于初学流水线芯片设计的学生来说,是个很好的教例!-ARM 7, there are three lines, chip design pipeline for beginner students, is a very good teaching cases!
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-03
    • 文件大小:68439
    • 提供者:赵煌
  1. change

    0下载:
  2. 使用系统调用pipe()建立一条管道,系统调用fork()分别创建两个子进程,它们分别向管道写一句话,如: Child process1 is sending a message! Child process2 is sending a message! 父进程分别从管道读出来自两个子进程的信息,显示在屏幕上。两个子进程并发执行。 实现管道的互斥使用。当一个子进程正在对管道进行写操作时,另一个欲写入管道的子进程必须等待。 使用系统调用lockf(fd[1],1,0)实
  3. 所属分类:Linux/Unix编程

    • 发布日期:2017-03-28
    • 文件大小:116993
    • 提供者:小弟
  1. ProcessManagementchannel

    0下载:
  2. 使用系统调用pipe()建立一条管道,系统调用fork()分别创建两个子进程,它们分别向管道写一句话,如: Child process1 is sending a message! Child process2 is sending a message! 父进程分别从管道读出来自两个子进程的信息,显示在屏幕上。两个子进程并发执行。 实现管道的互斥使用。当一个子进程正在对管道进行写操作时,另一个欲写入管道的子进程必须等待。 使用系统调用lockf(fd[1],1,0)实现对管道
  3. 所属分类:Linux-Unix program

    • 发布日期:2017-03-31
    • 文件大小:180992
    • 提供者:小弟
  1. 1

    0下载:
  2. 主题:进程的管道通信 内容:这是一个设计型实验,要求自行编制程序。 使用系统调用pipe()建立一条管道,两个子进程分别向管道写一句话: Child process1 is sending a message! Child process2 is sending a message! 父进程从管道读出来自两个子进程的信息,显示在屏幕上。 要求: 1) 父进程先接收子进程1发来的消息,然后再接收子进程2发来的消息。 2) 实现管道的互斥使用,当一个子进程正在对
  3. 所属分类:WinSock-NDIS

    • 发布日期:2017-04-05
    • 文件大小:7713
    • 提供者:小斧子
  1. assgin01

    1下载:
  2.  实现下列问题的程序代码: 某石油公司计划建造一条由东向西的主输油管 道。该管道要穿过一个有n口油井的油田。从 每口油井都要有一条输油管道沿最短路径(或 南或北)与主管道相连。如果给定n口油井的 位置,即它们的x坐标和y坐标,应如何确定主 管道的最优位置,即使各油井到主管道之间的 输油管道长度总和最小的位置?- code to achieve the following questions: a oil company plans to
  3. 所属分类:Other windows programs

    • 发布日期:2017-04-08
    • 文件大小:144241
    • 提供者:cai0538
  1. ShellEx

    0下载:
  2. 1.创建新进程 2.用管道(PIPE)进行进程间通信 -1. To create a new process 2. With a pipeline (PIPE) for interprocess communication
  3. 所属分类:Windows Develop

    • 发布日期:2017-04-14
    • 文件大小:4456
    • 提供者:李成
  1. zuoye1_shuzhu

    0下载:
  2. 流水调度的数组简单算法。n个作业要在由俩台机器M1和M2组成的流水线上完成加工。每个作业的顺序都是现在M1上加工,然后在M2上加工。这个问题要求确定这n个作业的最优加工顺序,使得从第一个作业M1上开始加工,到最后一个作业在机器M2上加工完成所需的时间最短-Array of simple flow scheduling algorithm. n a job in the two machines M1 and M2 components of the pipeline to complete pr
  3. 所属分类:Mathimatics-Numerical algorithms

    • 发布日期:2017-04-10
    • 文件大小:631
    • 提供者:刘日月
  1. StructureandMotionPipline

    0下载:
  2. The images are organized into a tree with agglomerative clustering, using a measure of overlap as the distance. The reconstruction then follows this tree from the leaves to the root. As a result, the problems is broken into smaller instances, which a
  3. 所属分类:matlab

    • 发布日期:2017-04-05
    • 文件大小:305876
    • 提供者:tubeo
  1. MiniVM

    1下载:
  2. 里面包含有汇编器代码和虚拟机代码,主要用来体验PC的工作原理和CPU的寻址方式等,由于用E语言编写的程序比较慢,所以管道模式是没有办法实现的了。-Which contains the virtual machine code and assembler code, the main PC to experience the working principle and the CPU' s addressing modes and so on, because a program writt
  3. 所属分类:Game Hook Crack

    • 发布日期:2017-04-04
    • 文件大小:703367
    • 提供者:飞轩泠
  1. instruction_decode_v

    0下载:
  2. MIPS 5 stage pipeline, this file is for instruction decode. you can use it to place in pipline. this has been used in a study lab.
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-03
    • 文件大小:2688
    • 提供者:jimmy
  1. dc_mult_32by32_ASM

    0下载:
  2. 一个5级流水线结构的32*32 bits乘法器-A 5-stage pipeline structure of the 32* 32 bits multiplier
  3. 所属分类:VHDL-FPGA-Verilog

    • 发布日期:2017-04-16
    • 文件大小:92523
    • 提供者:David
  1. hardy

    0下载:
  2. solving a network of pipeline by the procedure of HARDY CROSS .
  3. 所属分类:matlab

    • 发布日期:2017-04-10
    • 文件大小:1216
    • 提供者:mhf
  1. WangWZ

    0下载:
  2. 清华博士王为之写的一片博士论文,对pipeline adc有详细描述!-Dr. Qinghua Wang whom wrote a doctoral thesis, a detailed descr iption of the pipeline adc!
  3. 所属分类:SCM

    • 发布日期:2017-05-15
    • 文件大小:3814534
    • 提供者:wang
« 1 2 ... 5 6 7 8 9 1011 12 13 14 15 ... 20 »
搜珍网 www.dssz.com